summaryrefslogtreecommitdiffstats
path: root/src/net/gcdc/asn1/datatypes/Asn1Integer.java
blob: 188a36355193399b373db5e144a5d091cfbd5897 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package net.gcdc.asn1.datatypes;



//outdated: use BigInteger 
public class Asn1Integer {

    public long value;

    public Asn1Integer() {}
    public Asn1Integer(long value) {
        this.value = value;
    }

    public Long value() { return value; }

    @Override public String toString() {
        return "" + value;
    }
    
    public Long longObject () {
    	return new Long(value()); 
    }

	public Asn1Integer(Long num) {
		this.value = num;
	}
	
	
	public Asn1Integer(Integer num) {
		this.value = num;
	}
	
	public Asn1Integer(int num) {
		this.value = num;
	}
	
	public static Long toLong(Asn1Integer object) {
		if (object == null) return null;
		return object.value();
	}
		
	
	public static Asn1Integer toAsn1(Long object) {
		if (object == null) return null;
		return new Asn1Integer(object);
	}
	







}